CI: modernize GitHub Actions (PHP 8.2–8.5) - #11
Merged
Conversation
Phase 0 housekeeping: - Upgrade actions/checkout and actions/cache to v4 - Test on PHP 8.2–8.5 - Remove Scrutinizer coverage upload - Fail the suite on test errors (no continue-on-error)
There was a problem hiding this comment.
Pull request overview
Modernizes the project’s CI workflow to use current GitHub Actions versions and a newer PHP test matrix, aligning with the PortPHP org “Phase 0” CI modernization effort.
Changes:
- Upgraded
actions/checkoutandactions/cachetov4. - Updated the test matrix to run on PHP 8.2–8.5 (and disabled fail-fast).
- Removed Scrutinizer/ocular coverage upload and standardized on running PHPUnit without coverage.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+32
to
+33
| - name: Validate composer.json | ||
| run: composer validate --strict --no-check-lock |
Comment on lines
38
to
+41
| path: vendor | ||
| key: ${{ runner.os }}-composer-${{ matrix.composer-prefer }}$-${{ hashFiles('**/composer.lock') }} | ||
| key: ${{ runner.os }}-composer-${{ matrix.php-versions }}-${{ hashFiles('**/composer.json') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-composer-${{ matrix.composer-prefer }}- | ||
| ${{ runner.os }}-composer-${{ matrix.php-versions }}- |
2 tasks
slashrsm
added a commit
that referenced
this pull request
Jul 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Phase 0 housekeeping for green, maintainable CI.
actions/checkoutandactions/cacheto v4Part of PortPHP org CI modernization (Phase 0).